home *** CD-ROM | disk | FTP | other *** search
/ Champak 53 / Volume 53 - JOGO DISK .iso / Games / thefarmer.swf / scripts / DefineButton2_780 / BUTTONCONDACTION on(release).as next >
Text File  |  2007-10-01  |  216b  |  15 lines

  1. on(release){
  2.    harga = 200;
  3.    if(uang >= harga)
  4.    {
  5.       uang -= harga;
  6.       pestisida += 20;
  7.       _root.pendapatan = harga;
  8.       animuang.play();
  9.    }
  10.    else
  11.    {
  12.       infouang.play();
  13.    }
  14. }
  15.